home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / ExecutiveTest / ExecApp.h < prev    next >
Text File  |  1995-06-12  |  609b  |  32 lines

  1. # import <appkit/Application.h>
  2. # import <appkit/Text.h>
  3. # import <appkit/Matrix.h>
  4. # import "Executive.h"
  5.  
  6. @interface ExecApp:Application
  7. {    id                command;
  8.     id                async;
  9.     id                commandType;
  10.     id                pipeOutputWindow;
  11.     id                pipeOutputSV;
  12.     id                queueSV;
  13.     /*
  14.      * Instance variables
  15.      */
  16.     Text            *pipeOutputText;
  17.     Matrix        *queueMatrix;
  18.     Executive    *executive;
  19. }
  20.  
  21. - setCommand:anObject;
  22. - setAsync:anObject;
  23. - setCommandType:anObject;
  24. - setPipeOutputWindow:anObject;
  25. - setPipeOutputSV:anObject;
  26. - setQueueSV:anObject;
  27. - commandDone:(int)which result:(int)err;
  28. - takeUpdatePeriodFrom:sender;
  29. - execute:sender;
  30.  
  31. @end
  32.